d3f096a74c9cefad83ecda0842e603b25763d521,src/com/idevicesinc/sweetblue/utils/BluetoothEnabler.java,DefaultBluetoothEnablerListener,onEvent,#BluetoothEnablerEvent#,299
Before Change
}
else if(!e.isEnabled(Stage.LOCATION_SERVICES))
{
return Please.doNext().withImplicitActivityResultHandling().withDialog("Android Marshmallow (6.0+) requires Location Services for improved Bluetooth device scanning. While it is not required, it is recommended that Location Services are turned on to improve device discovery");
}
else
{
After Change
}
else if(!e.isEnabled(Stage.LOCATION_SERVICES))
{
return Please.doNext().withImplicitActivityResultHandling().withDialog("Android Marshmallow (6.0+) requires Location Services for improved Bluetooth device scanning. While it is not required, it is recommended that Location Services are turned on to improve device discovery.").withToast("Please enable Location Services then press back button");
}
else
{